home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-26 | 1.4 KB | 63 lines | [TEXT/TCEd] |
- #
- # Preditor.startup
- #
- # Last Modified: Friday, June 27, 1991 at 11:46 PM
- #
- # The script is executed when the Preditor application is
- # invoked, as long as the script resides in the "Preditor
- # Folder". Note that any file ending in ".startup" will
- # be executed.
- #
- # You can customize this file as you wish, or add your own
- # ".startup" file.
- #
- # © Copyright Evatac Software 1988-1991
- # All rights reserved
- #
-
- # Run the common key assignment macros
-
- ":Macros:Key Assignment Examples"()
-
- AddMenu "Next Pascal Function"
- Search("p", "^[ \\t]*procedure|^[ \\t]*function", ∂
- NULL, ~Active)
- Select([§]≥0, ~Active)
- Search("p", "[A-Za-z_][A-Za-z0-9_]*", NULL, ~Active)
- EndMenu
-
- AddMenu "Next C Function"
- Search("p", "^[A-Za-z_][A-Za-z0-9_]* [A-Za-z_][A-Za-z0-9_]*\\(", ∂
- Null, ~Active)
- Select([§]≤0, ~Active)
- Search("p", "[A-Za-z_][A-Za-z0-9_]*", NULL, ~Active)
- EndMenu
-
- AddMenu "Show File"
- ShowLine(~Active)
- EndMenu
-
- # Uncomment this for a larger screen - or set to your preference
-
- # ~NewWindowRect = "5, 5, 430, 550"
-
-
- # Uncomment this if you don't want macro command to be displayed
- # in the status window as they are executed. Speeds up time
- # intensive loops by a about 5 times.
-
- # ~ShowCommand = 0
-
-
- # Uncomment this if you like to have a introduction greet you
- # when you startup Preditor. Modify the Introduction script to
- # change the introduction
-
- # ":Macros:Introduction"()
-
-
- # Look here for Macros
- MacroDir(":Macros:")
-
- Open("Worksheet")
-